github.com/golang/mock/gomock.Call.methodType (field)
15 uses
github.com/golang/mock/gomock (current package)
call.go#L30: methodType reflect.Type // the type of the method
call.go#L78: return &Call{t: t, receiver: receiver, method: method, methodType: methodType,
call.go#L119: if c.methodType.NumIn() != ft.NumIn() {
call.go#L121: c.receiver, c.method, ft.NumIn(), c.methodType.NumIn(), c.origin)
call.go#L152: if c.methodType.NumIn() != v.Type().NumIn() {
call.go#L154: c.receiver, c.method, v.Type().NumIn(), c.methodType.NumIn(), c.origin)
call.go#L177: mt := c.methodType
call.go#L225: mt := c.methodType
call.go#L311: if !c.methodType.IsVariadic() {
call.go#L326: if len(c.args) < c.methodType.NumIn()-1 {
call.go#L328: c.origin, len(c.args), c.methodType.NumIn()-1)
call.go#L330: if len(c.args) != c.methodType.NumIn() && len(args) != len(c.args) {
call.go#L340: if i < c.methodType.NumIn()-1 {
call.go#L368: vArgsType := c.methodType.In(c.methodType.NumIn() - 1)